fix(script): Fix date format (#1)

This commit is contained in:
hygienic-books 2023-03-06 03:02:02 +01:00
parent 35f572fe97
commit 9437dea225
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ snap_only_local_datasets='true'
snap_field_separator='_' snap_field_separator='_'
snap_name_prefix='pac' snap_name_prefix='pac'
snap_date_format='+F-%H%M' snap_date_format='%F-%H%M'
snap_op_installation_suffix='inst' snap_op_installation_suffix='inst'
snap_op_remove_suffix='rmvl' snap_op_remove_suffix='rmvl'

View File

@ -26,7 +26,7 @@ if [[ ! "${pkgs_list_max_length}" ]]; then pkgs_list_max_length='24'; fi
if [[ ! "${snap_only_local_datasets}" ]]; then snap_only_local_datasets='true'; fi if [[ ! "${snap_only_local_datasets}" ]]; then snap_only_local_datasets='true'; fi
if [[ ! "${snap_field_separator}" ]]; then snap_field_separator='_'; fi if [[ ! "${snap_field_separator}" ]]; then snap_field_separator='_'; fi
if [[ ! "${snap_name_prefix}" ]]; then snap_name_prefix='pac'; fi if [[ ! "${snap_name_prefix}" ]]; then snap_name_prefix='pac'; fi
if [[ ! "${snap_date_format}" ]]; then snap_date_format='+F-%H%M'; fi if [[ ! "${snap_date_format}" ]]; then snap_date_format='%F-%H%M'; fi
if [[ ! "${snap_op_installation_suffix}" ]]; then snap_op_installation_suffix='inst'; fi if [[ ! "${snap_op_installation_suffix}" ]]; then snap_op_installation_suffix='inst'; fi
if [[ ! "${snap_op_remove_suffix}" ]]; then snap_op_remove_suffix='rmvl'; fi if [[ ! "${snap_op_remove_suffix}" ]]; then snap_op_remove_suffix='rmvl'; fi
if [[ ! "${snap_op_upgrade_suffix}" ]]; then snap_op_upgrade_suffix='upgr'; fi if [[ ! "${snap_op_upgrade_suffix}" ]]; then snap_op_upgrade_suffix='upgr'; fi