mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-12 02:58:20 +08:00
18 lines
455 B
Bash
Executable file
18 lines
455 B
Bash
Executable file
#! /usr/bin/env bash
|
|
set -e
|
|
if [ ! -d "build/resources/certs" ]; then
|
|
echo "Please manually place the unencrypted certs for this operating system into build/resources/certs"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p /tmp/nylas
|
|
mv build/resources/certs /tmp/nylas/certs
|
|
git clean -xdf
|
|
mv /tmp/nylas/certs build/resources/certs
|
|
|
|
export PUBLISH_BUILD=true;
|
|
git submodule update --init --recursive
|
|
source build/resources/certs/set_unix_env.sh
|
|
|
|
script/bootstrap
|
|
script/grunt ci
|