mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
10 lines
325 B
Bash
Executable File
10 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
# Mapping of /output should be set in the docker run options for the
|
|
# run-updater step of the generate job in .github/workflows/Updater.yml
|
|
cd /output/ || exit 1
|
|
crew update
|
|
git config --global --add safe.directory /output
|
|
export CREW_AGREE_TIMEOUT_SECONDS=1
|
|
set -x
|
|
tools/update_no_compile_packages.rb || exit 1
|