This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/updatepackages.sh
2017-08-02 17:09:14 +10:00

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