blob: cb1919a1331c1d5a736eeb77970a8143bfdacf1d (
plain)
1
2
3
4
5
6
7
8
|
-- initializing the path for configuration
-- DO NOT CHANGE
home_dir = os.getenv("HOME")
package.path = string.format("%s;%s/.config/pkgit/?.lua", package.path, home_dir)
-- require other lua scripts
require "build_systems"
require "repositories"
require "install_directories"
|