summarylogtreecommitdiffstats
path: root/build_environment.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_environment.sh')
-rw-r--r--build_environment.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/build_environment.sh b/build_environment.sh
deleted file mode 100644
index a1d26fde4bce..000000000000
--- a/build_environment.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-# Functions for interacting with the build environment
-
-function initialize_build_environment() {
- local directory="$1"; shift
-
- if [[ -z "${directory}" ]]; then
- mkdir -p "${PATH_BUILD}"
- mkarchroot -C /etc/pacman.conf "${PATH_BUILD}/root" base-devel
- else
- if [[ "${directory:0:1}" = "/" ]]; then
- mkdir -p "${directory}"
- mkarchroot -C /etc/pacman.conf "${directory}/root" base-devel
- else
- echo "Path is invalid"
- fi
- fi
-} \ No newline at end of file