symlinkForIpfsEntry method

Future<bool> symlinkForIpfsEntry(
  1. String cid,
  2. String xx64
)

Implementation

Future<bool> symlinkForIpfsEntry(String cid, String xx64) async {
  var shell = Shell();

  final xxfy = await shell.run('''ln -s ''' +
      Directory.current.path +
      '''/uppity/ipfs/''' +
      cid +
      ' ' +
      Directory.current.path +
      '/uppity/xx/' +
      xx64);

  return true;
}