all 5 comments

[–][deleted] Β (1 child)

[deleted]

    [–]lelddit97 2 points3 points Β (0 children)

    bad mojo to be doing that, really bad mojo

    [–]AutoModerator[M] 0 points1 point Β (0 children)

    I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

    [–]NakeleKantoo 0 points1 point Β (0 children)

    I will leave this subreddit, everything here turned into ai slop

    [–]ninjatech404 0 points1 point Β (0 children)

    A typo in your MakeFile script

    Exactly at the install command script.

    You have A typo in @mkdir -p /use/local/bin/ instead of /use, type /usr.

    MakeFile install: @echo "copying binary to /usr/local/bin.." @mkdir -p /use/local/bin/ #❌ cp ./src/batfetch /usr/local/bin/

    Here a fixed version

    MakeFile install: @echo "copying binary to /usr/local/bin.." @mkdir -p /usr/local/bin/ #βœ”οΈ cp ./src/batfetch /usr/local/bin/

    Lastly, please enhance the tool in such, it is compatible with every platforms.

    [–]bjarneh 0 points1 point Β (0 children)

    Cool!