9 lines
152 B
Bash
9 lines
152 B
Bash
#!/bin/bash
|
|
|
|
# shellcheck disable=SC2034
|
|
DOTFILES=$( cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd || return)
|
|
|
|
function finalize {
|
|
unset DOTFILES
|
|
}
|