Skip to content

Commit

Permalink
Drops shebang from lfortran test script
Browse files Browse the repository at this point in the history
  • Loading branch information
dylon committed Nov 20, 2024
1 parent 58b35aa commit a87a8a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions server/src/lfortran-accessors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,9 @@ export class LFortranCLIAccessor implements LFortranAccessor {
console.debug("lfortranPath = %s", lfortranPath);
}
if (lfortranPath === null) {
console.error("Failed to locate lfortran, please specify its path in the configuration.");
return "{}";
console.error(
"Failed to locate lfortran, please specify its path in the configuration.");
return "";
}

try {
Expand Down
1 change: 0 additions & 1 deletion server/test/bin/lfortran
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
#!/bin/bash
cat "${@:$#}"

0 comments on commit a87a8a8

Please sign in to comment.