We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d8c53d commit fcc3ed0Copy full SHA for fcc3ed0
build_platform.py
@@ -136,7 +136,10 @@ def run_or_die(cmd, error):
136
137
# link test library folder to the arduino libraries folder
138
if not IS_LEARNING_SYS:
139
- os.symlink(BUILD_DIR, os.environ['HOME']+'/Arduino/libraries/Adafruit_Test_Library')
+ try:
140
+ os.symlink(BUILD_DIR, os.environ['HOME']+'/Arduino/libraries/Adafruit_Test_Library')
141
+ catch FileExistsError:
142
+ pass
143
144
################################ Install dependancies
145
our_name=None
0 commit comments