diff --git a/README.md b/README.md index fb145fe..9dd995a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,11 @@ -fvar +fdict ==== -Supplying a variable module which does not restrict the type used. +Supplying a variable and dictionary module which does not restrict the type used. + + +Type free variable +================== Using this module one gains access to a generic type variable which can contain *any* data format. @@ -42,7 +46,7 @@ where it is. As with any other pointer arithmetic it is up to the programmer to ensure no memory leaks. -dictionary +Dictionary ========== Using the `type(var)` it becomes easy to create dictionaries in fortran. diff --git a/dist.sh b/dist.sh index cfb18e1..e740f9e 100755 --- a/dist.sh +++ b/dist.sh @@ -1,6 +1,7 @@ - #!/bin/bash +_name=fdict + # bash-script to create tar file for distribution # Get tag branch and number of commits since @@ -9,11 +10,11 @@ describe=`git describe HEAD` describe=${describe%-*} # Save file name -file=fvar-$describe.tar.gz +file=$_name-$describe.tar.gz rm -f $file # Create the archive (with prefix) -git archive --prefix fvar-$describe/ \ +git archive --prefix $_name-$describe/ \ --format tar.gz \ -o $file HEAD