Skip to content

Commit 86f705b

Browse files
committed
symlink fix
1 parent cf6311b commit 86f705b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def run_or_die(cmd, error):
286286
# link our library folder to the arduino libraries folder
287287
if not IS_LEARNING_SYS:
288288
try:
289-
os.symlink(BUILD_DIR, '/Users/brentrubell/Documents/Arduino/libraries' + os.path.basename(BUILD_DIR))
289+
os.symlink(BUILD_DIR, os.environ['HOME']+'/Arduino/libraries/' + os.path.basename(BUILD_DIR))
290290
except FileExistsError:
291291
pass
292292

0 commit comments

Comments
 (0)