Compare commits

..

1 Commits

Author SHA1 Message Date
Vincent Riquer
76e690ed20 rewrite migration helper 2025-02-08 21:46:07 +01:00

View File

@ -8,7 +8,7 @@ xdgUpdateData() {
local -r new_db_path="$my_data_home/atom.db"
[[ -d "$my_data_home" ]] || mkdir -p "$my_data_home"
mv "$1" "$new_db_path"
mv "$database" "$new_db_path"
echo "$new_dp_path"
}
@ -25,7 +25,7 @@ xdgMigrate() {
cffile="$HOME/.atom/atom.cfg"
getConfig
database=$(xdgUpdateData "$database")
database=$(xdgUpdateData)
tempdir=$(xdgUpdateRuntime)
cffile="$my_config_home/atom.cfg"
[[ -d "$my_config_home" ]] || mkdir -p "$my_config_home"