We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9636ba4 commit 47ef6a4Copy full SHA for 47ef6a4
1 file changed
install.sh
@@ -1,7 +1,15 @@
1
#!/bin/bash
2
sudo apt install npm
3
sudo apt install git
4
-git clone https://github.com/AnimePub/AniPub.git
5
-cd AniPun
6
-npm install
7
-npm run start
+if [ -v ~/AniPub ]
+then
+ cd ~/AniPun
+ npm install
8
+else
9
+ echo "Couldn't Find AniPub .."
10
+ echo "Downloading It"
11
+ git clone https://github.com/AnimePub/AniPub.git
12
13
14
+fi
15
+npm run start
0 commit comments