Skip to content

Commit

Permalink
Fix travis configuration error.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkistner committed Mar 19, 2013
1 parent 05263a7 commit 9001866
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
- ARDUINO_PACKAGE=arduino-1.5.2-linux64
- ARDUINO_PACKAGE=arduino-nightly-linux64
matrix:
- allow_failures:
allow_failures:
- env: ARDUINO_PACKAGE=arduino-nightly-linux64
before_install:
- wget http://downloads.arduino.cc/$ARDUINO_PACKAGE.tgz
Expand Down
10 changes: 7 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/bin/sh
#!/bin/bash
HARDWARE=~/Arduino/hardware
TARGET=$HARDWARE/arcore
mkdir -p $HARDWARE
ln -s `pwd` $TARGET
echo "Installed to $TARGET"
if [[ -d "$TARGET" ]]; then
echo "Already installed at $TARGET"
else
ln -s "$PWD" "$TARGET"
echo "Installed at $TARGET"
fi

0 comments on commit 9001866

Please sign in to comment.