Differences From Artifact [f7f3655bf1]:
- Executable file tenki/make.sh — part of check-in [70991b55c3] at 2019-05-01 01:03:44 on branch trunk — refactor tenki (user: lexi, size: 244) [annotate] [blame] [check-ins using]
To Artifact [3702e74b7e]:
- Executable file tenki/make.sh — part of check-in [4e2b17fce2] at 2021-09-11 22:18:39 on branch trunk — add rd-key (user: lexi, size: 252) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 |
#!/bin/bash
if test -e apikey; then
cc -Ofast -Dds_apikey="\"$(cat apikey)\"" tenki.c -lssl -otenki
else
echo "tenki requires an API key. get one from dark sky and put it in a file in this directory named 'apikey' before you try to build"
fi
|
| |
1 2 3 4 5 6 |
#!/usr/bin/env bash
if test -e apikey; then
cc -Ofast -Dds_apikey="\"$(cat apikey)\"" tenki.c -lssl -otenki
else
echo "tenki requires an API key. get one from dark sky and put it in a file in this directory named 'apikey' before you try to build"
fi
|