diff options
Diffstat (limited to 'vcx')
| -rw-r--r-- | vcx | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -15,7 +15,6 @@ use constant VCX_DIR => '.vcx'; use constant OBJ_DIR => VCX_DIR . '/store'; # Latest version of a file use constant REV_DIR => VCX_DIR . '/revs'; # Commits use constant TREE_DIR => VCX_DIR . '/trees'; # Trees -use constant DIFF_DIR => VCX_DIR . '/deltas'; # Reverse deltas use constant HEAD_FILE => VCX_DIR . '/head'; # Current commit ID # Staging area @@ -47,7 +46,7 @@ if ($cmd eq 'init') { } sub run_init { - make_path(OBJ_DIR, REV_DIR, DIFF_DIR); + make_path(OBJ_DIR, REV_DIR, TREE_DIR); my $initial_hex = to_hex_id(0); my $rev0_dir = File::Spec->catfile(REV_DIR, $initial_hex); |
