We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb970da commit 08e7266Copy full SHA for 08e7266
1 file changed
install_deps.sh
@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
+
3
+for i in {1..20}; do
4
+ apt-get update && apt-get install -y curl gpg-agent && break
5
+ echo "apt-get failed, retrying... ($i/20)"
6
+ sleep 30
7
+done
8
9
+curl --silent --location https://deb.nodesource.com/setup_14.x | bash -
10
11
12
+ apt-get install -y nodejs npm unzip p7zip-full && npm install -g nodemon && break
13
14
15
0 commit comments