From 70e2938f3d8b464d2e811ed15578e3898b491d9f Mon Sep 17 00:00:00 2001 From: Stepanov Aleksey Date: Fri, 8 Aug 2025 07:02:13 +0500 Subject: refactor editStageProject function --- lib/edit.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/edit.sh b/lib/edit.sh index b2a97a6..19974b1 100755 --- a/lib/edit.sh +++ b/lib/edit.sh @@ -137,21 +137,21 @@ function editStageProject() { backupStages editStages - checkFilesHash + compareTaskFiles return 0 fi - for taskID in "${tasksProject[@]}"; do + for taskID in "${idsTaskProject[@]}"; do local uuid uuid=$(task _get "$taskID".uuid) - task _get "$uuid".description >>/tmp/tskw.edit + task _get "$uuid".description >>"$TMP_TSKW_EDIT" done backupStages editStages - checkFilesHash + compareTaskFiles } #****f* edit.sh/deleteProject -- cgit