diff options
| author | 2025-08-08 07:02:13 +0500 | |
|---|---|---|
| committer | 2025-08-08 07:02:13 +0500 | |
| commit | 70e2938f3d8b464d2e811ed15578e3898b491d9f (patch) | |
| tree | 8d24c8e2f179d0ca5c037a0f906cb43ec13b78f6 | |
| parent | 25cb08c115ae866addec97ee6f4ca75d2413de12 (diff) | |
refactor editStageProject function
| -rwxr-xr-x | lib/edit.sh | 8 |
1 files changed, 4 insertions, 4 deletions
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 |
