aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/macos/enable_zsh_history_and_viminfo.sh
blob: 98daf16dc814cb088b4a3b6cdf4847406008c3f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash
# Copyright (C) 2023 The Qt Company Ltd.

if [ -f /Users/qt/.zsh_history ]
then
  sudo chown qt:staff /Users/qt/.zsh_history
fi

if [ -f /Users/qt/.viminfo ]
then
  sudo chown qt:staff /Users/qt/.viminfo
fi