8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git clone https://bitbucket.org/$1/i399 ./.tmp
|
|
|
|
(cd ./.tmp && git checkout $2 && npm install && npm start)
|