helper script to get nuget stuff on linux

This commit is contained in:
RogueAI42 2017-08-02 17:09:14 +10:00
parent cf81ef177f
commit 1bf3c1f577

9
updatepackages.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh -e
# Download nuget packages on linux
mkdir -p packages
cd packages
for fname in $(find .. -iname "packages.config")
do
nuget install "$fname"
done