From 736ca1ebc5e7eb5b205f47397c3af3eb43ee22c3 Mon Sep 17 00:00:00 2001 From: Erik Skopp <129506395+eskopp@users.noreply.github.com> Date: Mon, 20 Nov 2023 14:58:19 +0100 Subject: [PATCH] change Manifest --- .github/Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/Readme.md b/.github/Readme.md index 6667790..204004d 100644 --- a/.github/Readme.md +++ b/.github/Readme.md @@ -32,7 +32,7 @@ javac -Xlint:unchecked ./javacrypt/*.java #### Build JAR-File -The command ``jar cfm MyCrypt.jar ./makefile.txt javacrypt/*.class`` creates a JAR (Java Archive) file named ``MyCrypt.jar`` with the specified manifest file (``makefile.txt``) and includes all the class files (``*.class``) in the ``javacrypt`` directory. +The command ``jar cfm MyCrypt.jar ./manifest.mf javacrypt/*.class`` creates a JAR (Java Archive) file named ``MyCrypt.jar`` with the specified manifest file (``manifest.mf``) and includes all the class files (``*.class``) in the ``javacrypt`` directory. ```shell jar cfm JavaCrypt.jar manifest.mf javacrypt/*.class