-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable multiline and import|load support for a bunch of stuff (#311)
* chill debugger and get it to match better with lando4, also make security MLC * multiline support for v3 build steps * add multiline !load support to events * use sapi as a more holistic measure of the service api * uh * fix write-file to be more targetted re: ImportString * fix write-file to be more targetted re: ImportString part 2 * fix write-file to be more targetted re: ImportString part 3 * fix other SAPI related issues re: multipass * improve !load resolution when base is unknown * fix incorrect SAPI usage * #244: Variable for setting the network limit. * #244: Add test for the networkLimit config var. * #297: fixed incorrect -EncodedCommand fallback detection for powershell.exe script execution * cl * release v3.23.22 generated by @lando/prepare-release-action * multipass access to healthchecks * multipass access to tooling * multipass access for config --------- Co-authored-by: Alec Reynolds <[email protected]> Co-authored-by: Alec Reynolds <[email protected]> Co-authored-by: rtfm-47 <[email protected]>
- Loading branch information
1 parent
ed7e488
commit 76c2446
Showing
49 changed files
with
586 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/bash | ||
set -eo pipefail | ||
|
||
WRITER=paperback-writer | ||
|
||
# PARSE THE ARGZZ | ||
while (( "$#" )); do | ||
case "$1" in | ||
--writer) | ||
WRITER="$2" | ||
shift 2 | ||
;; | ||
--writer=*) | ||
WRITER="${1#*=}" | ||
shift | ||
;; | ||
--) | ||
shift | ||
break | ||
;; | ||
-*|--*=) | ||
shift | ||
;; | ||
*) | ||
shift | ||
;; | ||
esac | ||
done | ||
|
||
echo "$WRITER" > "/tmp/$WRITER" | ||
|
||
cat "/tmp/$WRITER" |
Oops, something went wrong.