mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-23 05:14:18 +08:00
10 lines
163 B
Bash
Executable File
10 lines
163 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Configuration
|
|
export TARGET=x86_64-unknown-redox
|
|
|
|
# Automatic variables
|
|
ROOT="$(cd `dirname "$0"` && pwd)"
|
|
REPO="$ROOT/repo/$TARGET"
|