Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bash: Fix source error #4931

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
14 changes: 8 additions & 6 deletions packages/b/bash/files/profile/profile
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@
# Begin /usr/share/defaults/etc/profile

if [ -d /usr/share/defaults/etc/profile.d ] ; then
for script in /usr/share/defaults/etc/profile.d/*.sh
do
source $script
for script in /usr/share/defaults/etc/profile.d/*.sh; do
if [ -r $script ] ; then
source $script
fi
done
unset script
fi

if [ -d /etc/profile.d ] ; then
for script in /etc/profile.d/*.sh
do
source $script
for script in /etc/profile.d/*.sh; do
if [ -r $script ] ; then
source $script
fi
done
unset script
fi
Expand Down
2 changes: 1 addition & 1 deletion packages/b/bash/package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name : bash

Check notice on line 1 in packages/b/bash/package.yml

View workflow job for this annotation

GitHub Actions / Checks

This package is included in the ISO. Consider validating the functionality in a newly built ISO.
version : 5.2.37
release : 85
release : 86
source :
- https://ftp.gnu.org/gnu/bash/bash-5.2.37.tar.gz : 9599b22ecd1d5787ad7d3b7bf0c59f312b3396d1e281175dd1f8a4014da621ff
license :
Expand Down
14 changes: 7 additions & 7 deletions packages/b/bash/pspec_x86_64.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<Name>bash</Name>
<Homepage>https://www.gnu.org/software/bash</Homepage>
<Packager>
<Name>Tracey Clark</Name>
<Email>[email protected]</Email>
<Name>nelson</Name>
<Email>[email protected]</Email>
</Packager>
<License>GPL-3.0-or-later</License>
<PartOf>system.base</PartOf>
Expand Down Expand Up @@ -135,7 +135,7 @@
</Description>
<PartOf>programming.devel</PartOf>
<RuntimeDependencies>
<Dependency release="85">bash</Dependency>
<Dependency release="86">bash</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/bash/alias.h</Path>
Expand Down Expand Up @@ -201,12 +201,12 @@
</Files>
</Package>
<History>
<Update release="85">
<Date>2025-02-02</Date>
<Update release="86">
<Date>2025-02-07</Date>
<Version>5.2.37</Version>
<Comment>Packaging update</Comment>
<Name>Tracey Clark</Name>
<Email>[email protected]</Email>
<Name>nelson</Name>
<Email>[email protected]</Email>
</Update>
</History>
</PISI>