File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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;
Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments