/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tools/restore_installed_build.sh
39 строк
1 KB
Bryan Chin
updating hacking scripts to remove 'Sprint' suffix from app folder
31 окт 2013, 06:40
31 окт 2013, 06:40
4695d06
Код
Авторство
О чём код?
#!/bin/bash # Detect the user's operating system platform=`uname -s`; if [[ "$platform" == 'Linux' ]]; then # This is the default directory for Ubuntu installations (if installed with the *.deb). # May have to adjust if other operating systems use different directories. default_app_directory='/opt/brackets'; symlink='dev'; elif [[ "$platform" == 'Darwin' ]]; then # MAC OSX default_app_directory='/Applications/Brackets.app'; symlink='Contents/dev'; else # Warn for unknown operating system? default_app_directory='/opt/brackets'; symlink='dev'; fi # Make sure the appname was passed in and is valid if [[ ${1} == "" ]]; then echo "Usage: restore_installed_build.sh <application>" echo "Restore Brackets to use the installed HTML/CSS/JS files." echo "" echo "Parameters: application - full path to the Brackets application" echo "Example: ./restore_installed_build.sh \"$default_app_directory\"" exit 0; fi if [ ! -d "${1}" ]; then echo "$1 not found." exit 1; fi link_name="${1}/$symlink" if [[ -L "$link_name" ]]; then rm "$link_name" || exit 1; echo "$1 has been restored to the installed configuration." fi