re-upload of lost dart code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
nixo e8e56309a6 init (v1.24.3) 4 years ago
lib init (v1.24.3) 4 years ago
test init (v1.24.3) 4 years ago
tool init (v1.24.3) 4 years ago
.gitignore init (v1.24.3) 4 years ago
.travis.yml init (v1.24.3) 4 years ago
AUTHORS init (v1.24.3) 4 years ago
CHANGELOG.md init (v1.24.3) 4 years ago
CONTRIBUTING.md init (v1.24.3) 4 years ago
LICENSE init (v1.24.3) 4 years ago
README.md init (v1.24.3) 4 years ago
pubspec.yaml init (v1.24.3) 4 years ago

README.md

which pub package Build Status Coverage Status

Check for and locate installed executables. Just like unix which(1), except:

  • Doesn't shell out (fast).
  • Cross-platform (works on windows).

Install

pub global activate den
den install which

Usage

import 'dart:io';

import 'package:which/which.dart';

main(arguments) async {

  // Asynchronously
  var git = await which('git', orElse: () => null);

  // Or synchronously
  var git = whichSync('git', orElse: () => null);

  if (git == null) {
    print('Please install git and try again');
    exit(1);
  }

  await Process.run(git, ['add', '-A']);
  await Process.run(git, ['commit', '-m', arguments.first]);
}