mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
16 lines
206 B
Bash
Executable file
16 lines
206 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# bail on errors
|
|
set -e
|
|
|
|
# export PATH="$HOME/.rbenv/shims:$PATH"
|
|
|
|
echo "*** bootstrap samhuri.net"
|
|
|
|
echo "* bundle install"
|
|
bundle install
|
|
|
|
# echo "* npm install"
|
|
# npm install
|
|
|
|
echo "*** done"
|