fix: create lua dest dir

This commit is contained in:
Price Hiller 2022-08-01 04:16:50 -05:00
parent ddc17ae7ca
commit 98e242df5a

View File

@ -47,6 +47,12 @@
lua_dest_archive: "{{ lua_dest_archive | default(lua_dest + '/lua.tar.gz') }}"
when: lua_installed.rc != 0
- name: Create Lua extraction directory
ansible.builtin.file:
path: "{{ lua_dest }}"
state: directory
mode: 0755
- name: Download Lua
ansible.builtin.get_url:
url: http://www.lua.org/ftp/lua-{{ lua_version }}.tar.gz