10 lines
89 B
Bash
10 lines
89 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "${SMASHING_PROJECT_DIR}"
|
||
|
|
||
|
bundle install
|
||
|
|
||
|
smashing "$@"
|