summaryrefslogtreecommitdiffhomepage
path: root/ci/ios/create-vm/scripts/link-zprofile.sh
blob: af085137ab903ed71c4f3d4b6b00031c7809e0b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -eu

# The profile link already exists, skip this step
if [[ -f "$HOME/.profile" ]]
then
    exit 0
fi

touch ~/.zprofile
ln -s ~/.zprofile ~/.profile