mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-25 22:27:20 +10:00
13 lines
402 B
Bash
Executable file
13 lines
402 B
Bash
Executable file
REPO_ROOT=$(dirname $(readlink -f $0))/../..
|
|
|
|
# Export desktop environment shell configuration
|
|
eval "$($REPO_ROOT/docker/scripts/environment.sh)"
|
|
|
|
# Set the cachebust file to rebuild from dotfiles onwards
|
|
DOTFILES_CACHEBUST=$(date +%s > $REPO_ROOT/.dotfiles-cachebust)
|
|
|
|
# Rebuild the desktop environment
|
|
$REPO_ROOT/docker/scripts/build.sh
|
|
|
|
# Store build exit code
|
|
echo $? > $REPO_ROOT/.build-exit-code
|