Skip to content

Commit

Permalink
Fixed scripts path
Browse files Browse the repository at this point in the history
  • Loading branch information
pensiero committed Nov 3, 2017
1 parent 4940504 commit 24d0bcd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/docker/watchers/adapters/node-sass/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for FILE in css/*
for FILE in public/css/*
do
bash $(dirname $0)/adapter.sh $FILE
done
2 changes: 1 addition & 1 deletion config/docker/watchers/adapters/uglifycss/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for FILE in css/*
for FILE in public/css/*
do
bash $(dirname $0)/adapter.sh $FILE
done
2 changes: 1 addition & 1 deletion config/docker/watchers/adapters/uglifyjs/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for FILE in js/*
for FILE in public/js/*
do
bash $(dirname $0)/adapter.sh $FILE
done
2 changes: 1 addition & 1 deletion config/docker/watchers/adapters/yui-compressor/run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

for FILE in css/*
for FILE in public/css/*
do
bash $(dirname $0)/adapter.sh $FILE
done

0 comments on commit 24d0bcd

Please sign in to comment.