Skip to content

Commit 1db1ba2

Browse files
authored
Check for whole extra folder in its actual location
1 parent d0a2ebc commit 1db1ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atpack.build.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ rm -rf temp/device-specs
5353

5454
EXTRA_LIBS=`diff -r -q ../objdir/avr/lib temp/ | grep "Only in" | grep temp | cut -f4 -d" "`
5555
for x in $EXTRA_LIBS; do
56-
if [ ! -d ${x} ]; then
56+
if [ ! -d temp/${x} ]; then
5757
cd temp
5858
LOCATION=`find . | grep ${x}`
5959
cd ..

0 commit comments

Comments
 (0)