Régularisation de commits manquants

This commit is contained in:
2020-06-24 13:10:52 +02:00
parent 6810659202
commit 2bc59082d9
941 changed files with 89385 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
set -e
# check to see if casperjs folder is empty
if [ ! -d "$HOME/casperjs-1.1.3/bin" ]; then
wget https://github.com/n1k0/casperjs/archive/1.1.3.tar.gz -O $HOME/casper.tar.gz;
tar -xvf $HOME/casper.tar.gz -C $HOME;
else
echo 'Using cached directory for casperjs.';
fi