Skip to content

Commit

Permalink
Using bash all the way down
Browse files Browse the repository at this point in the history
  • Loading branch information
mzabriskie committed Jan 3, 2015
1 parent d2710d7 commit 567ce08
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tasks/build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

mkdir -p dist

Expand Down
2 changes: 1 addition & 1 deletion tasks/dev
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
#!/bin/bash

$RACKT_PATH/node_modules/.bin/webpack-dev-server --inline --config $RACKT_PATH/webpack.config.js --content-base examples/
2 changes: 1 addition & 1 deletion tasks/help
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

echo "Usage: rackt <command> [<args>]"
echo ""
Expand Down
2 changes: 1 addition & 1 deletion tasks/pages
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# make sure working directory is clean
DIRTY=$(git status | grep modified -c)
Expand Down
2 changes: 1 addition & 1 deletion tasks/release
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

if [ "$1" == "--preview" ] || [ "$1" == "-P" ] || [ "$1" == "-p" ]; then
# Preview release
Expand Down
2 changes: 1 addition & 1 deletion tasks/test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

CI=""
if [ "$1" == "--ci" ]; then
Expand Down
2 changes: 1 addition & 1 deletion tasks/version
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

VERSION=$($RACKT_PATH/lib/get_version.js)

Expand Down

0 comments on commit 567ce08

Please sign in to comment.