blob: a5c32cb70a4e4bd9cb68b45f0584f634bcd4b01c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
# Configuration variables shared between the release scripts in this directory.
# Where the release scripts and programs store temporary data
export DATA_DIR="$HOME/.local/share/mullvad-release-android"
export WORK_DIR="$DATA_DIR/work/"
export PUBLISHED_DIR="$DATA_DIR/currently_published/"
# The user on the buildserver that builds and uploads artifacts to the cdn servers
export BUILDSERVER_BUILDUSER="build"
|