The following assumes you are converting a symlinked folder named client
rsync -rL $(readlink client) tmp
unlink client
mv clientx/client .
rmdir tmp
-- Install packer | |
local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim' | |
local is_bootstrap = false | |
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | |
is_bootstrap = true | |
vim.fn.system { 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path } | |
vim.cmd [[packadd packer.nvim]] | |
end | |
require('packer').startup(function(use) |
#!/usr/bin/env bash | |
# This script was generated by bashly (https://github.com/DannyBen/bashly) | |
# Modifying it manually is not recommended | |
# :script.bash3_bouncer | |
if [[ "${BASH_VERSINFO:-0}" -lt 4 ]]; then | |
printf "bash version 4 or higher is required\n" | |
exit 1 | |
fi |
The following assumes you are converting a symlinked folder named client
rsync -rL $(readlink client) tmp
unlink client
mv clientx/client .
rmdir tmp
void DumpKeyHashes() | |
{ | |
try | |
{ | |
using (var sha = new System.Security.Cryptography.SHA1CryptoServiceProvider()) | |
{ | |
//Retriving package info | |
var packageName = ApplicationContext.PackageName; | |
System.Diagnostics.Debug.WriteLine("#### PACKAGE NAME: " + packageName); | |
var packageInfo = this.PackageManager.GetPackageInfo(packageName, PackageInfoFlags.Signatures); |