Skip to content

Commit 232a752

Browse files
committed
workflow: remove neofetch from arch builds since it got offically removed in the repos
1 parent 226eec9 commit 232a752

4 files changed

Lines changed: 5 additions & 11 deletions

File tree

.github/workflows/makefile.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
- uses: actions/checkout@v4
163163

164164
- name: Install the packages
165-
run: pacman -Syyu git sudo base-devel fakeroot pkgconf tree neofetch --noconfirm --needed
165+
run: pacman -Syyu git sudo base-devel fakeroot pkgconf tree --noconfirm --needed
166166

167167
- name: Create a dedicated build user
168168
run: |
@@ -189,9 +189,6 @@ jobs:
189189
#- name: Setup SSH session
190190
# uses: mxschmitt/action-tmate@v3
191191

192-
- name: Test neofetch
193-
run: neofetch
194-
195192
- name: Test customfetch
196193
run: customfetch --wrap-lines
197194

@@ -204,7 +201,7 @@ jobs:
204201
- uses: actions/checkout@v4
205202

206203
- name: Install the packages
207-
run: pacman -Syyu git sudo binutils gdb base-devel fakeroot pkgconf tree neofetch fastfetch --noconfirm --needed
204+
run: pacman -Syyu git sudo binutils gdb base-devel fakeroot pkgconf tree fastfetch --noconfirm --needed
208205

209206
- name: get /etc/sudoers
210207
run: |
@@ -221,9 +218,6 @@ jobs:
221218
- name: Compile and install
222219
run: make install DEBUG=1 VENDOR_TEST=1 GUI_APP=0
223220

224-
- name: Test neofetch
225-
run: neofetch
226-
227221
- name: Test fastfetch
228222
run: fastfetch
229223

src/query/linux/user.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ static std::string get_term_version(const std::string_view term_name)
386386
if (!f.is_open())
387387
goto skip;
388388

389-
std::string buffer((std::istreambuf_iterator<char>(f)), std::istreambuf_iterator<char>());
389+
std::string buffer(std::istreambuf_iterator<char>{f}, std::istreambuf_iterator<char>{});
390390
buffer.push_back('\0');
391391

392392
rapidxml::xml_document<> doc;

src/query/linux/utils/dewm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ std::string get_mate_version()
191191
return ret;
192192
}
193193

194-
std::string buffer((std::istreambuf_iterator<char>(f)), std::istreambuf_iterator<char>());
194+
std::string buffer(std::istreambuf_iterator<char>{f}, std::istreambuf_iterator<char>{});
195195
buffer.push_back('\0');
196196

197197
rapidxml::xml_document<> doc;

src/query/macos/system.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static System::System_t get_os_infos()
9393
if (!f.is_open())
9494
die("Couldn't get MacOS base infos");
9595

96-
std::string buffer((std::istreambuf_iterator<char>(f)), std::istreambuf_iterator<char>());
96+
std::string buffer(std::istreambuf_iterator<char>{f}, std::istreambuf_iterator<char>{});
9797
buffer.push_back('\0');
9898

9999
rapidxml::xml_document<> doc;

0 commit comments

Comments
 (0)