mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
17 lines
305 B
Bash
Executable File
17 lines
305 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd ../demo-shell-ng2
|
|
|
|
#!/bin/sh
|
|
if [[ $1 = "-install" ]]; then
|
|
npm install
|
|
npm run start
|
|
elif [[ $1 = "-update " ]]; then
|
|
npm run update
|
|
npm run start
|
|
elif [[ $1 = "-cleanInstall" ]]; then
|
|
npm run clean
|
|
npm install
|
|
npm run start
|
|
else
|
|
npm run start
|
|
fi |