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