mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
10 lines
164 B
Bash
10 lines
164 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Fail on any errors
|
||
|
set -e
|
||
|
|
||
|
# Install root project dependencies
|
||
|
npm run bootstrap
|
||
|
npm install --no-save 7zip-bin-linux app-builder-bin-linux
|
||
|
|