aboutsummaryrefslogtreecommitdiffstats
path: root/src/redo.c
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-05-06 00:52:27 +0200
committerTharre <tharre3@gmail.com>2015-05-24 22:15:09 +0200
commit4678d9630e9f95db9d06d3423c539bcb0bcc722c (patch)
tree92e1bb6d73eddc027436276454560fb709ad3c1f /src/redo.c
parent3d7bf2600524bf988362859ddd92556baf4e7e2f (diff)
downloadredo-4678d9630e9f95db9d06d3423c539bcb0bcc722c.tar.gz
redo-4678d9630e9f95db9d06d3423c539bcb0bcc722c.tar.xz
redo-4678d9630e9f95db9d06d3423c539bcb0bcc722c.zip
Use full path instead of one concatenated filename
Creation of the redo store (.redo/) is now silent, that should probably be reimplemented in a better way at a later time.
Diffstat (limited to 'src/redo.c')
-rw-r--r--src/redo.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/redo.c b/src/redo.c
index 577d975..dba0b08 100644
--- a/src/redo.c
+++ b/src/redo.c
@@ -31,10 +31,6 @@ void prepare_env() {
&& getenv("REDO_MAGIC"))
return;
- /* create the dependency store if it doesn't already exist */
- if (mkdirp(".redo") && mkdirp(".redo/deps"))
- fprintf(stderr, "redo: creating dependency store ...\n");
-
/* set REDO_ROOT */
char *cwd = getcwd(NULL, 0);
if (!cwd)