15 lines
289 B
Bash
Executable File
15 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
# vim: set sw=4 ts=4 sts=4 et :
|
|
|
|
set -e
|
|
|
|
. "${CONFIGDIR:=${PWD}}"/config
|
|
|
|
mkdir -p "${CONFIGDIR}"/portage/target/etc/portage/repos.conf
|
|
|
|
cat > "${CONFIGDIR}"/portage/target/etc/portage/repos.conf/aimee-os.conf <<EOF
|
|
[aimee-os]
|
|
location = ${PWD}/repos/aimee-os
|
|
auto-sync = no
|
|
EOF
|