You've already forked buildcache
mirror of
https://github.com/encounter/buildcache.git
synced 2026-03-30 11:03:52 -07:00
12 lines
368 B
Lua
12 lines
368 B
Lua
-- match(echo)
|
|
|
|
-------------------------------------------------------------------------------
|
|
-- This is a minimal wrapper that caches stdout from the 'echo' command.
|
|
-------------------------------------------------------------------------------
|
|
|
|
function get_program_id ()
|
|
-- We use the full path to the executable as a program identifier.
|
|
return ARGS[1]
|
|
end
|
|
|