-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'js/ci-windows-update' into maint
Updates to the CI settings. * js/ci-windows-update: Azure Pipeline: switch to the latest agent pools ci: prevent `perforce` from being quarantined t/lib-httpd: avoid using macOS' sed
- Loading branch information
Showing
10 changed files
with
93 additions
and
73 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/sh | ||
|
||
# If "one-time-perl" exists in $HTTPD_ROOT_PATH, run perl on the HTTP response, | ||
# using the contents of "one-time-perl" as the perl command to be run. If the | ||
# response was modified as a result, delete "one-time-perl" so that subsequent | ||
# HTTP responses are no longer modified. | ||
# | ||
# This can be used to simulate the effects of the repository changing in | ||
# between HTTP request-response pairs. | ||
if test -f one-time-perl | ||
then | ||
LC_ALL=C | ||
export LC_ALL | ||
|
||
"$GIT_EXEC_PATH/git-http-backend" >out | ||
perl -pe "$(cat one-time-perl)" out >out_modified | ||
|
||
if cmp -s out out_modified | ||
then | ||
cat out | ||
else | ||
cat out_modified | ||
rm one-time-perl | ||
fi | ||
else | ||
"$GIT_EXEC_PATH/git-http-backend" | ||
fi |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.