diff options
author | xengineering <me@xengineering.eu> | 2022-11-11 19:23:39 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-11-11 19:23:39 +0100 |
commit | a33065889f01941c3f2063c3a895653bd02ae244 (patch) | |
tree | d24b79c62d3648e2e0919f2e774bce97e8645312 | |
parent | bdefa29fb2395eec79564145186d9ad1ec45dff3 (diff) | |
download | ceres-a33065889f01941c3f2063c3a895653bd02ae244.tar ceres-a33065889f01941c3f2063c3a895653bd02ae244.tar.zst ceres-a33065889f01941c3f2063c3a895653bd02ae244.zip |
Ensure that storage folder exists for debugging
A not existing data/storage folder could break the program with the
debug.json config file used. The .gitkeep file which is introduced with
this commit ensures that the folder exists.
-rw-r--r-- | data/.gitignore | 2 | ||||
-rw-r--r-- | data/storage/.gitkeep | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/data/.gitignore b/data/.gitignore index fa780e2..0b7e618 100644 --- a/data/.gitignore +++ b/data/.gitignore @@ -1 +1 @@ -storage +./storage/* diff --git a/data/storage/.gitkeep b/data/storage/.gitkeep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/data/storage/.gitkeep |