Skip to content

Commit b961258

Browse files
authored
Merge pull request #19 from mkreyman/fix/install-script-npm
fix: Add npm install and build to install.sh
2 parents 6cca2e5 + 8524745 commit b961258

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

install.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ else
2323
cd "$INSTALL_DIR"
2424
fi
2525

26+
# Install dependencies and build
27+
echo "Installing dependencies..."
28+
npm install
29+
echo "Building memory-keeper..."
30+
npm run build
31+
2632
# Make launcher executable
2733
chmod +x "$INSTALL_DIR/launcher.sh"
2834

0 commit comments

Comments
 (0)