ObjFW  Check-in [44c03cae44]

Overview
Comment:.travis.yml: Fix .deb name for devkitPro
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 44c03cae44439379455c24b045a07fbb3a3f23962e9803bd39ae32347dc55dca
User & Date: js on 2020-07-01 19:01:26
Other Links: manifest | tags
Context
2020-07-01
19:57
Convert apple-forwarding-i386.S to Intel syntax check-in: aa9a770184 user: js tags: trunk
19:01
.travis.yml: Fix .deb name for devkitPro check-in: 44c03cae44 user: js tags: trunk
00:49
call-x86_64-elf.S: Fix several typos check-in: 12a2c2d6c0 user: js tags: trunk
Changes

Modified .travis.yml from [059d61e67e] to [2f621d61d1].

266
267
268
269
270
271
272

273
274
275
276
277
278
279
280
281
            if grep precise /etc/lsb-release >/dev/null; then
                    sudo ipx_internal_net add 1234 123456;
            fi;
    fi

  - if [ "$config" = "nintendo_3ds" -o "$config" = "nintendo_ds"
        -o "$config" = "wii" ]; then

            wget https://github.com/devkitPro/pacman/releases/download/v1.0.2/devkitpro-pacman_1.0.2.amd64.deb;
            sudo dpkg -i devkitpro-pacman.deb;
    fi

  - if [ "$config" = "nintendo_3ds" ]; then
            sudo dkp-pacman --noconfirm -Syu 3ds-dev;
    fi

  - if [ "$config" = "nintendo_ds" ]; then







>
|
|







266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
            if grep precise /etc/lsb-release >/dev/null; then
                    sudo ipx_internal_net add 1234 123456;
            fi;
    fi

  - if [ "$config" = "nintendo_3ds" -o "$config" = "nintendo_ds"
        -o "$config" = "wii" ]; then
            deb=devkitpro-pacman_1.0.2.amd64.deb;
            wget https://github.com/devkitPro/pacman/releases/download/v1.0.2/$deb;
            sudo dpkg -i $deb;
    fi

  - if [ "$config" = "nintendo_3ds" ]; then
            sudo dkp-pacman --noconfirm -Syu 3ds-dev;
    fi

  - if [ "$config" = "nintendo_ds" ]; then