Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions make-file-list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -395,15 +395,19 @@ EOF
test -z "$MINIMAL_GIT_WITH_BUSYBOX" ||
echo $MSYSTEM_LOWER/bin/busybox.exe

test -n "$MINIMAL_GIT_WITH_BUSYBOX" || cat <<EOF
etc/profile
etc/profile.d/lang.sh
etc/bash.bash_logout
etc/bash.bashrc
etc/msystem
usr/bin/dash.exe
usr/bin/getopt.exe
EOF
if test -z "$MINIMAL_GIT_WITH_BUSYBOX"
then
cat <<-EOF
etc/profile
etc/profile.d/lang.sh
etc/bash.bashrc
etc/msystem
usr/bin/dash.exe
usr/bin/getopt.exe
EOF
test ! -f /etc/bash.bash_logout ||
echo etc/bash.bash_logout
fi

EXTRA_DLL_FILES=
case $MSYSTEM_LOWER in
Expand Down
3 changes: 3 additions & 0 deletions please.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3260,6 +3260,9 @@ create_sdk_artifact () { # [--out=<directory>] [--git-sdk=<directory>] [--archit
/usr/bin/msys-unistring*.dll
/usr/bin/msys-gnutls*.dll

# For the /etc/bash.bash_logout check
/etc/bash.bash_logout

# markdown, to render the release notes
/usr/bin/markdown

Expand Down