helper script to get nuget stuff on linux
This commit is contained in:
parent
cf81ef177f
commit
1bf3c1f577
1 changed files with 9 additions and 0 deletions
9
updatepackages.sh
Executable file
9
updatepackages.sh
Executable 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
|
Reference in a new issue