Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created April 28, 2018 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoffixznet/4d8baa08c834ed2159fb6a77560906d4 to your computer and use it in GitHub Desktop.
Save zoffixznet/4d8baa08c834ed2159fb6a77560906d4 to your computer and use it in GitHub Desktop.
use v6.c;
unit class Build;
method build($dist-path) {
my $proc = run "curl", "--version", :out, :err;
return if $proc.exitcode == 0;
die "This module requires 'curl' command, but couldn't find it, abort.";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment