diff --git a/README.md b/README.md index a4cfbd2..cc9caf0 100644 --- a/README.md +++ b/README.md @@ -362,7 +362,7 @@ You can use `ffsend` from the command line in the same directory: .\ffsend.exe --help ``` -To make it globally invokable as `ffsend`, you must make the binary available in +To make it globally invocable as `ffsend`, you must make the binary available in your systems `PATH`. The easiest solution is to move it into `System32`: ```cmd move .\ffsend.exe C:\Windows\System32\ffsend.exe @@ -428,7 +428,7 @@ docker pull timvisee/ffsend ``` On Linux or macOS you might define a alias in your shell configuration, to make -it invokable as `ffsend`: +it invocable as `ffsend`: ```bash alias ffsend='docker run --rm -it -v "$(pwd):/data" timvisee/ffsend' diff --git a/pkg/create_deb b/pkg/create_deb index bae3012..f2e98ca 100755 --- a/pkg/create_deb +++ b/pkg/create_deb @@ -28,7 +28,7 @@ fi mkdir -p "$DIR/ffsend-$VERSION" cp -- "$DIR/../ffsend" "$DIR/ffsend-$VERSION/ffsend" -# Create an application tarbal +# Create an application tarball cd -- "$DIR/.." git archive --format tar.gz -o "$DIR/ffsend-$VERSION/ffsend-$VERSION.tar.gz" "$TRAVIS_TAG"