mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-26 13:45:17 +02:00
12 lines
193 B
Bash
Executable file
12 lines
193 B
Bash
Executable file
#! /bin/sh
|
|
#
|
|
# bootstrap.sh
|
|
|
|
mkdir -p hostdir/repocache
|
|
if [ -d $HOME/repocache ]; then
|
|
ln $HOME/repocache/* hostdir/repocache;
|
|
else
|
|
mkdir -p $HOME/repocache
|
|
fi
|
|
|
|
./xbps-src binary-bootstrap
|