Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 11 lines (10 sloc) 287 Bytes
#!/bin/bash
cd ~/Projects/sample-man/
# simply start
npm start || ( \
\
# if it fails, try npm install and then start
npm install && npm start || ( \
\
# if that also failes remove node modules and then try npm install and start
rm -rf node_modules && npm install && npm start))