mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-03 04:41:43 +02:00
9 lines
142 B
Bash
9 lines
142 B
Bash
#!/bin/sh
|
|
|
|
. /etc/conf.d/rebuilderd
|
|
|
|
for profile in $sync_profiles; do
|
|
echo "Syncing $profile"
|
|
rebuildctl pkgs sync-profile "$profile"
|
|
done
|