forked from binaryage/totalfinder-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev.sh
executable file
·24 lines (20 loc) · 968 Bytes
/
dev.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
TOTALFINDER_RESOURCES='/Applications/TotalFinder.app/Contents/Resources/TotalFinder.bundle/Contents/Resources'
TOTALFINDER_RESOURCES_BACKUP='/Applications/TotalFinder.app/Contents/Resources/TotalFinder.bundle/Contents/ResourcesOrig'
# need absolute path of the repo's root
dir=`dirname $0`
pushd "$dir" > /dev/null
ROOT=$PWD
popd > /dev/null
if [ ! -d "$TOTALFINDER_RESOURCES" ]; then # is it a folder?
echo "Please install TotalFinder. Folder '$TOTALFINDER_RESOURCES' not found".
exit
fi
if [ -L "$TOTALFINDER_RESOURCES" ]; then # is is a symlink?
echo "TotalFinder is already in dev mode. Folder '$TOTALFINDER_RESOURCES' is a symlink! Exiting.".
exit
fi
# ok, we should be safe to do the replacement
sudo mv "$TOTALFINDER_RESOURCES" "$TOTALFINDER_RESOURCES_BACKUP"
sudo ln -s "$ROOT/plugin/Resources" "$TOTALFINDER_RESOURCES"
sudo cp "$TOTALFINDER_RESOURCES_BACKUP/"*.nib "$TOTALFINDER_RESOURCES" # steal compiled nibs from production