Skip to content

Commit 925d5be

Browse files
committed
Update install.sh to include adding vcpkg port.
1 parent 38b6dfc commit 925d5be

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scripts/install.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@ cd "$TMP_DIR" || { echo "Failed to enter temp directory"; exit 1; }
88
echo "Cloning the repository with submodules..."
99
git clone --recurse-submodules https://github.com/filesverse/node-filerix.git || { echo "Failed to clone repository"; exit 1; }
1010

11+
echo "Downloading filerix vcpkg port..."
12+
git clone --recurse-submodules https://github.com/filesverse/vcpkg-port.git || { echo "Failed to download filerix vcpkg port"; exit 1; }
13+
1114
cd node-filerix || { echo "Failed to enter the project directory"; exit 1; }
1215

16+
echo "Copying filerix vcpkg port..."
17+
mv ../vcpkg-port ./vcpkg/ports/filerix || { echo "Failed to copy filerix vcpkg port"; exit 1; }
18+
1319
echo "Bootstrapping vcpkg..."
1420
./vcpkg/bootstrap-vcpkg.sh || { echo "Failed to bootstrap vcpkg"; exit 1; }
1521

0 commit comments

Comments
 (0)