Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit 3cfd9f9

Browse files
committed
editing the tools script to match the ArduinoStudio paths
1 parent 3ba5bb7 commit 3cfd9f9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tools/restore_installed_build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ platform=`uname -s`;
55
if [[ "$platform" == 'Linux' ]]; then
66
# This is the default directory for Ubuntu installations (if installed with the *.deb).
77
# May have to adjust if other operating systems use different directories.
8-
default_app_directory='/opt/brackets';
8+
default_app_directory='/opt/arduinostudio';
99
symlink='dev';
1010
elif [[ "$platform" == 'Darwin' ]]; then # MAC OSX
11-
default_app_directory='/Applications/Brackets.app';
11+
default_app_directory='/Applications/ArduinoStudio.app';
1212
symlink='Contents/dev';
1313
else
1414
# Warn for unknown operating system?
15-
default_app_directory='/opt/brackets';
15+
default_app_directory='/opt/arduinostudio';
1616
symlink='dev';
1717
fi
1818

tools/setup_for_hacking.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ platform=`uname -s`;
55
if [[ "$platform" == 'Linux' ]]; then
66
# This is the default directory for Ubuntu installations (if installed with the *.deb).
77
# May have to adjust if other operating systems use different directories.
8-
default_app_directory='/opt/brackets';
8+
default_app_directory='/opt/arduinostudio';
99
symlink='dev';
1010
elif [[ "$platform" == 'Darwin' ]]; then # MAC OSX
11-
default_app_directory='/Applications/Brackets.app';
11+
default_app_directory='/Applications/ArduinoStudio.app';
1212
symlink='Contents/dev';
1313
else
1414
# Warn for unknown operating system?
15-
default_app_directory='/opt/brackets';
15+
default_app_directory='/opt/arduinostudio';
1616
symlink='dev';
1717
fi
1818

0 commit comments

Comments
 (0)