diff options
author | Luke Shumaker <lukeshu@datawire.io> | 2018-12-26 12:32:36 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@datawire.io> | 2018-12-26 12:32:36 -0500 |
commit | 8042330db0d59a811fe5f3e2f33cb1056bf6af50 (patch) | |
tree | 917d0d6e22c43cbdfe4829cdd37efff00491092f | |
parent | 66615bb2095df3dda23ff393f6bb8bd9dd50a766 (diff) |
Fixup initial setup
-rwxr-xr-x | INSTALL.sh | 1 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,5 @@ #!/bin/sh +set -ex # Go sudo pacman -S --needed -- go @@ -59,7 +59,8 @@ public-src/3rd-party/yarn.LICENSES.txt: bin/yarn-bower public-src/3rd-party/pack public/3rd-party: public-src/3rd-party/yarn.LICENSES.txt public/3rd-party: public-src/3rd-party/jquery-1.6.3.js public/3rd-party: - @touch $@ + ln -srTf public-src/3rd-party '$@' + @test -d $@ && touch $@ public-src/jarmon-style/%.gif: public-src/3rd-party/yarn.LICENSES.txt @test -f $@ public-src/3rd-party/jquery-%.js: |