File tree Expand file tree Collapse file tree 4 files changed +101
-98
lines changed Expand file tree Collapse file tree 4 files changed +101
-98
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,9 @@ data/
183
183
utils
184
184
.codeiumignore
185
185
project-planning
186
+ master-planning
186
187
output.txt
187
188
manifest.bak
188
189
.spellignore
190
+ .project-planning
191
+ .master-planning
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2024-12-28 - Warehouse Tool Improvements
4
+
5
+ - handled if higher level directories don't exist at destination.
6
+
3
7
## 2024-12-23 - Core Functionality Enhancements
4
8
5
9
### Setup Script Improvements
Original file line number Diff line number Diff line change 66
66
67
67
# Move the directory to Warehouse with error checking
68
68
(cd " ${source_directory} " && tar cf - " ${object_name} " ) | \
69
- (cd " ${destination_directory} " && tar xf -)
69
+ (mkdir -p " ${destination_directory} " && cd " ${destination_directory} " && tar xf -)
70
70
# shellcheck disable=SC2206
71
71
tar_exit=(${PIPESTATUS[*]} )
72
72
echo " Status ${tar_exit[*]} "
You can’t perform that action at this time.
0 commit comments