mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-24 03:32:35 +08:00

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@363442 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
|
|
if [[ "$1" == "--new" ]]; then
|
|
shift
|
|
fi
|
|
|
|
# Update the libc++ sources in the image in order to use the most recent version of
|
|
# run_buildbots.sh
|
|
cd /libcxx
|
|
git pull
|
|
/libcxx/utils/docker/scripts/run_buildbot_new.sh "$@"
|