Parent Directory
|
Revision Log
chore: add old version archive branches (2.x to 9.x-dev)
1 | #!/bin/bash |
2 | |
3 | cmd="npm start" |
4 | |
5 | for a in $@; do |
6 | if [[ $a == '--dev' ]]; then |
7 | cmd="npm run dev" |
8 | fi |
9 | done |
10 | |
11 | while true; do |
12 | command $cmd |
13 | sleep 2; |
14 | done |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |