From 0811327b26c4eb5c2397015a99351ddf226981f1 Mon Sep 17 00:00:00 2001 From: eli Date: Fri, 2 Sep 2022 07:23:27 -0400 Subject: [PATCH] * --- .gitignore | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++ Makefile | 3 -- build.sh | 3 ++ 3 files changed, 130 insertions(+), 3 deletions(-) delete mode 100644 Makefile create mode 100755 build.sh diff --git a/.gitignore b/.gitignore index dd05eb9..2eecf17 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,130 @@ +ni + .idea bin *~ + +# Created by https://www.toptal.com/developers/gitignore/api/emacs,macos,sublimetext,nova +# Edit at https://www.toptal.com/developers/gitignore?templates=emacs,macos,sublimetext,nova + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +### macOS Patch ### +# iCloud generated files +*.icloud + +### nova ### +.nova/* + +### SublimeText ### +# Cache files for Sublime Text +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache + +# Workspace files are user-specific +*.sublime-workspace + +# Project files should be checked into the repository, unless a significant +# proportion of contributors will probably not be using Sublime Text +# *.sublime-project + +# SFTP configuration file +sftp-config.json +sftp-config-alt*.json + +# Package control specific files +Package Control.last-run +Package Control.ca-list +Package Control.ca-bundle +Package Control.system-ca-bundle +Package Control.cache/ +Package Control.ca-certs/ +Package Control.merged-ca-bundle +Package Control.user-ca-bundle +oscrypto-ca-bundle.crt +bh_unicode_properties.cache + +# Sublime-github package stores a github token in this file +# https://packagecontrol.io/packages/sublime-github +GitHub.sublime-settings + +# End of https://www.toptal.com/developers/gitignore/api/emacs,macos,sublimetext,nova \ No newline at end of file diff --git a/Makefile b/Makefile deleted file mode 100644 index ed13b42..0000000 --- a/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -build: - CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -o bin/ni main.go - diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..e770f10 --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +#!/bin/sh -e + +go build . \ No newline at end of file