Skip to content

Commit

Permalink
Removed 0.2.0 migration notice
Browse files Browse the repository at this point in the history
  • Loading branch information
Descent098 committed Feb 6, 2020
1 parent 62676a0 commit b0d1fe5
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,36 +29,3 @@ This package seeks to make the tedius task of creating one off bash scripts obso
- Autocompletion not supported on windows (not my fault)
- Technically without vendoring you also can't use ```ahd``` as a command for any other purpose



# Upgrading to V 0.2.x from V0.1.x

One thing to note if you are updating to V0.2.x from V0.1.x, the way that the preprocessing of paths works has been changed. Originally it was being stored as a "list" (though this isn't actually the case), and now it is just a string of comma-delimited paths. Here are the steps to migrate:



1. Export your current configuration by running:
```ahd config -e```

2. Edit the configuration file in a text editor (in this example I will use nano):
```nano .ahdconfig```

3. Change any paths for commands to string representations instead of lists(remove the square brackets). For example:
This

```ini
[git-upt]
command = git pull
paths = [C:\Users\Kieran\Desktop\Development\personal\*, C:\Users\Kieran\Desktop\Development\Canadian Coding\*]
```

Would become

```ini
[git-upt]
command = git pull
paths = ~/Desktop/Development/personal/*, ~/Desktop/Development/Canadian Coding/*
```


0 comments on commit b0d1fe5

Please sign in to comment.