File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -183,13 +183,6 @@ def run_or_die(cmd, error):
183
183
" > /dev/null" , "FAILED to update core indecies" )
184
184
print ()
185
185
186
- # link test library folder to the arduino libraries folder
187
- if not IS_LEARNING_SYS :
188
- try :
189
- os .symlink (BUILD_DIR , os .environ ['HOME' ]+ '/Arduino/libraries/Adafruit_Test_Library' )
190
- except FileExistsError :
191
- pass
192
-
193
186
################################ Install dependancies
194
187
our_name = None
195
188
try :
@@ -218,6 +211,13 @@ def run_or_die(cmd, error):
218
211
219
212
print ("Libraries installed: " , glob .glob (os .environ ['HOME' ]+ '/Arduino/libraries/*' ))
220
213
214
+ # link our library folder to the arduino libraries folder
215
+ if not IS_LEARNING_SYS :
216
+ try :
217
+ os .symlink (BUILD_DIR , os .environ ['HOME' ]+ '/Arduino/libraries/' + os .path .basename (BUILD_DIR ))
218
+ except FileExistsError :
219
+ pass
220
+
221
221
################################ Test platforms
222
222
platforms = []
223
223
success = 0
You can’t perform that action at this time.
0 commit comments