Fixed a bug where the list function does not look in $NOTES_DIR

This commit is contained in:
Jon-William Lewis
2016-02-15 15:20:32 -06:00
parent e7dbc21954
commit 5a594b71cf

View File

@@ -1,4 +1,4 @@
function list(){
# This function, given a folder, $NOTE, will list the contents of $NOTE.
ls "$NOTE"
ls "$NOTES_DIR/${NOTE%.*}"
}