Skip to content

Instantly share code, notes, and snippets.

@bigbes
Created July 17, 2018 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bigbes/b70fd7ef4b36351d22b4253c54a19882 to your computer and use it in GitHub Desktop.
Save bigbes/b70fd7ef4b36351d22b4253c54a19882 to your computer and use it in GitHub Desktop.
out/
├── bin
│   └── tarantool
├── cmake
│   ├── yamlConfig.cmake
│   ├── yamlConfigVersion.cmake
│   ├── yamlTargets-debug.cmake
│   └── yamlTargets.cmake
├── include
│   ├── config.h
│   ├── tarantool
│   │   ├── lauxlib.h
│   │   ├── lua.h
│   │   ├── lua.hpp
│   │   ├── luaconf.h
│   │   ├── luajit.h
│   │   ├── lualib.h
│   │   └── module.h
│   └── yaml.h
├── lib
│   ├── libyaml_static.a
│   └── tarantool
└── share
├── man
│   └── man1
│   └── tarantool.1
└── tarantool
├── com.tarantool.tarantool.plist
└── luarocks
├── add.lua
├── admin_remove.lua
├── build
│   ├── builtin.lua
│   ├── cmake.lua
│   ├── command.lua
│   └── make.lua
├── build.lua
├── cache.lua
├── cfg.lua
├── command_line.lua
├── config_cmd.lua
├── deps.lua
├── dir.lua
├── doc.lua
├── download.lua
├── fetch
│   ├── cvs.lua
│   ├── git.lua
│   ├── git_file.lua
│   ├── git_http.lua
│   ├── git_https.lua
│   ├── git_ssh.lua
│   ├── hg.lua
│   ├── hg_http.lua
│   ├── hg_https.lua
│   ├── hg_ssh.lua
│   ├── sscm.lua
│   └── svn.lua
├── fetch.lua
├── fs
│   ├── lua.lua
│   ├── tools.lua
│   ├── unix
│   │   └── tools.lua
│   ├── unix.lua
│   ├── win32
│   │   └── tools.lua
│   └── win32.lua
├── fs.lua
├── help.lua
├── index.lua
├── install.lua
├── lint.lua
├── list.lua
├── loader.lua
├── make.lua
├── make_manifest.lua
├── manif.lua
├── manif_core.lua
├── new_version.lua
├── pack.lua
├── path.lua
├── path_cmd.lua
├── persist.lua
├── purge.lua
├── refresh_cache.lua
├── remove.lua
├── repos.lua
├── require.lua
├── search.lua
├── show.lua
├── site_config.lua
├── tools
│   ├── patch.lua
│   ├── tar.lua
│   └── zip.lua
├── type_check.lua
├── unpack.lua
├── upload
│   ├── api.lua
│   └── multipart.lua
├── upload.lua
├── util.lua
├── validate.lua
└── write_rockspec.lua
18 directories, 86 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment