mirror of
https://github.com/nix-community/home-manager
synced 2024-11-11 05:39:44 +01:00
gh: idempotently consider existing symlinks
> -e file > True if file exists. > -f file > True if file exists and is a regular file. > [...] > -L file > True if file exists and is a symbolic link. > > (Source: bash(1))
This commit is contained in:
parent
c06612e8db
commit
b2af81413f
1 changed files with 5 additions and 4 deletions
|
@ -135,15 +135,16 @@ in {
|
||||||
#
|
#
|
||||||
# See https://github.com/nix-community/home-manager/issues/4744 for details.
|
# See https://github.com/nix-community/home-manager/issues/4744 for details.
|
||||||
home.activation.migrateGhAccounts =
|
home.activation.migrateGhAccounts =
|
||||||
hm.dag.entryBetween [ "linkGeneration" ] [ "writeBoundary" ] ''
|
let ghHosts = "${config.xdg.configHome}/gh/hosts.yml";
|
||||||
if [[ -e "${config.xdg.configHome}/gh/hosts.yml" ]]; then
|
in hm.dag.entryBetween [ "linkGeneration" ] [ "writeBoundary" ] ''
|
||||||
|
if [[ ! -L "${ghHosts}" && -f "${ghHosts}" ]]; then
|
||||||
(
|
(
|
||||||
TMP_DIR=$(mktemp -d)
|
TMP_DIR=$(mktemp -d)
|
||||||
trap "rm --force --recursive $TMP_DIR" EXIT
|
trap "rm --force --recursive $TMP_DIR" EXIT
|
||||||
cp "${config.xdg.configHome}/gh/hosts.yml" $TMP_DIR/
|
cp "${ghHosts}" $TMP_DIR/
|
||||||
export GH_CONFIG_DIR=$TMP_DIR
|
export GH_CONFIG_DIR=$TMP_DIR
|
||||||
$DRY_RUN_CMD ${getExe cfg.package} help 2>&1 > $DRY_RUN_NULL
|
$DRY_RUN_CMD ${getExe cfg.package} help 2>&1 > $DRY_RUN_NULL
|
||||||
cp $TMP_DIR/hosts.yml "${config.xdg.configHome}/gh/hosts.yml"
|
cp $TMP_DIR/hosts.yml "${ghHosts}"
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue