58518fd360
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
8 lines
125 B
Bash
Executable file
8 lines
125 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dst=$1; shift
|
|
|
|
for dir in /dev /proc /sys /sys/firmware/efi/efivars; do
|
|
mount --bind $dir ${dst}/${dir}
|
|
|
|
done
|