DivestOS/Scripts/LineageOS-14.1/00init.sh

22 lines
550 B
Bash
Raw Normal View History

#!/bin/bash
#Sets settings used by all other scripts
base="/mnt/Drive-1/Development/Other/Android_ROMs/Build/LineageOS-14.1/";
export base;
patches="/mnt/Drive-1/Development/Other/Android_ROMs/Patches/LineageOS-14.1/";
export patches;
2017-10-30 02:14:37 +00:00
cvePatches="/mnt/Drive-1/Development/Other/Android_ROMs/Patches/Linux_CVEs/";
export cvePatches;
scripts="/mnt/Drive-1/Development/Other/Android_ROMs/Scripts/LineageOS-14.1/";
export scripts;
cveScripts=$scripts"CVE_Patchers/";
export cveScripts;
ANDROID_HOME="/home/$USER/Android/Sdk";
export ANDROID_HOME;