todo/start.sh

15 lines
185 B
Bash
Raw Normal View History

2021-08-27 11:50:21 -04:00
#!/bin/bash
2021-08-27 08:21:56 -04:00
pwd;
read -p "continue"
git fetch;
read -p "continue"
git pull;
read -p "continue"
yarn;
read -p "continue"
yarn compile;
read -p "continue"
yarn start;
read -p "continue"