Skip to content

Commit

Permalink
Added linux launcher for hex
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Nov 9, 2022
1 parent 35406fc commit f4b097c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions images/image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ done

$javac_home/bin/java -cp $CPLC_API:$CPLC_UTIL:$CPLC:$JUST_BUILD_JRD:$RSYNTAXTEXTAREA org.jrd.backend.data.cli.Help > $IMAGE_DIR/jrd.man.1
cp $SCRIPT_DIR/README.md $IMAGE_DIR
cp $THIS_SCRIPT_DIR/hex.sh $IMAGE_DIR

pushd $TARGET_DIR
cp -r $IMAGE_DIR $NAME$SUFFIX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ default void printUsage() {
for (String launchOption : launchOptions()) {
System.out.println(indent(1) + launcher(true) + launchOption);
}
System.out.println(indent(1) + launcher(false) + HEX + " launches standalone hex (and text) editor/diff. Mighty diff.");
System.out.println(
indent(1) + launcher(false) + HEX + " [file, file...]" + " launches standalone hex (and text) editor/diff. Mighty diff."
);
}

void printOptionsHeading();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public Patch(
*/
@SuppressWarnings(
{"MethodLength", "CyclomaticComplexity", "ExecutableStatementCount", "JavaNCSS", "UnnecessaryParentheses",
"ModifiedControlVariable", "NestedIfDepth"}
)
"ModifiedControlVariable", "NestedIfDepth", "LineLength", "Indentation"}
) // Indentation and LineLength are because of this line itself :-/ Remove them once refactored!
public VmInfo patch() throws Exception {
//--patch <puc> ((plugin)xor(SP/CP)( (-hex) (-R) < patch
String puc;
Expand Down

0 comments on commit f4b097c

Please sign in to comment.