mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-10-23 03:31:56 +00:00
11 lines
182 B
Bash
Executable File
11 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
echo "Removing node_modules and app/node_modules"
|
|
rm -rf node_modules
|
|
rm -rf app/node_modules
|
|
|
|
echo "node_modules removed reinstalling npm packages"
|
|
npm i
|