mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
10 lines
84 B
Bash
10 lines
84 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e;
|
||
|
|
||
|
npm install gulp -g
|
||
|
npm install
|
||
|
bundle install
|
||
|
|
||
|
exit;
|