mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 09:52:15 +00:00
9 lines
160 B
Bash
Executable file
9 lines
160 B
Bash
Executable file
#!/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
|