mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:58:11 +00:00
Meta: Use a bash shebang for text-to-cpp-string.sh
Previously we had /bin/sh, which might be bash but is run in POSIX mode on some systems, causing read -r to not work correctly and inserting newlines when encountering literal "\n" in the source. Fixes #5040.
This commit is contained in:
parent
5e95a777e0
commit
7ad31651bd
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/usr/bin/env bash
|
||||
# $1 name of the variable
|
||||
# $2 input path
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue