mirror of
https://github.com/danbee/cv
synced 2025-03-04 08:59:12 +00:00
16 lines
183 B
Ruby
Executable File
16 lines
183 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
module CV
|
|
def CV.check_dir
|
|
return File.exists? "danbarbercv"
|
|
end
|
|
|
|
def CV.deploy
|
|
if check_dir
|
|
puts "Deploying..."
|
|
end
|
|
end
|
|
end
|
|
|
|
CV.deploy
|