Skip to content

Commit 4a6b28a

Browse files
authored
Merge pull request #72 from codecae/travis_obj_dir
Added obj directory creation to build.sh
2 parents 8787b4d + 1d6fcea commit 4a6b28a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
#!/bin/bash
1+
#!/bin/bash
22

33
if [ -d obj ]; then
44
rm -fR obj/*
5+
else
6+
mkdir obj
57
fi
68

79
cp -fR src/* obj

0 commit comments

Comments
 (0)