Remove output directories from the repository

This commit is contained in:
Donovan Glover 2017-12-25 21:34:37 -05:00
parent 9d977774fc
commit d50ebb0c64
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D
7 changed files with 11 additions and 14 deletions

15
.gitignore vendored
View File

@ -1,12 +1,11 @@
# Ignore all files inside the bin/ directory except .gitkeep # Ignore all files in the bin/ directory
bin/* bin/
!bin/.gitkeep
# Ignore all files inside the docs/ directory except .gitkeep # Ignore all files in the docs/ directory
docs/* docs/
!docs/.gitkeep
# Ignore all files in the lib/ directory
lib/
# Ignore all files made by shards # Ignore all files made by shards
.shards/ .shards/
lib/**/*
!lib/*.cr

View File

@ -1 +0,0 @@
We use `.gitkeep` to keep track of directories that have no other files in them.

View File

@ -1 +0,0 @@
We use `.gitkeep` to keep track of directories that have no other files in them.

View File

@ -2,7 +2,7 @@
# #
# New Start: A modern Arch workflow built with an emphasis on functionality. # New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017 Donovan Glover # Copyright (C) 2017 Donovan Glover
# #
# Maid: Easily move dotfiles from one location to another # Maid: Easily move dotfiles from one location to another
# Copyright (C) 2017 Donovan Glover # Copyright (C) 2017 Donovan Glover
# #
@ -31,7 +31,7 @@
# If so, add Maid.init() to create a base configuration # If so, add Maid.init() to create a base configuration
require "file_utils" require "file_utils"
require "trucolor" require "./trucolor"
module Maid module Maid
@ -150,7 +150,7 @@ module Maid
exit 0 exit 0
end end
def status() def status()
# For each file in upstream # For each file in upstream
i = 0 i = 0

View File

@ -1,4 +1,4 @@
require "theme" require "./theme_helper"
require "yaml" require "yaml"
if ARGV.size > 0 if ARGV.size > 0